chore(i18n): Use correct plural syntax
authorrakekniven <2069590+rakekniven@users.noreply.github.com>
Tue, 25 Feb 2025 06:20:41 +0000 (07:20 +0100)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Tue, 25 Feb 2025 07:57:29 +0000 (07:57 +0000)
Signed-off-by: rakekniven <2069590+rakekniven@users.noreply.github.com>
src/gui/tray/usermodel.cpp

index 6c19d744027f19d02e5a6e4d22ca1445091ab853..e6ccd45e6eab1163f874e95e5cd85b5e43ee1745 100644 (file)
@@ -174,7 +174,7 @@ void User::showDesktopNotification(const Activity &activity)
 
 void User::showDesktopNotification(const ActivityList &activityList)
 {
-    const auto subject = tr("%n notifications", nullptr, activityList.count());
+    const auto subject = tr("%n notification(s)", nullptr, activityList.count());
     const auto notificationId = -static_cast<int>(qHash(subject));
 
     if (!canShowNotification(notificationId)) {